h2 {
    margin: 10px 0;
}

h2::before {
    content: "";
    border-left: 10px solid #fc8f26;
    padding-left: 5px;
}


/* 作品集锦 */

.gather .view {
    width: 285px;
    height: 280px;
    overflow: hidden;
    position: relative;
    margin: 10px 0 10px 10px;
    float: left;
}

.gather .view img {
    width: 100%;
}

.gather .view:nth-of-type(1) {
    width: 570px;
}

.gather .view:nth-of-type(5) {
    width: 570px;
}

.gather .view .content {
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 60px;
    left: 0;
    text-align: center;
    color: #fff;
    transform: rotate(55deg);
    /*变形：旋转55度*/
    -webkit-transform: rotate(55deg);
    transition: all 0.5s;
    /*过渡：所有属性都改变，时长0.5s*/
    -webkit-transition: all 0.5s;
    overflow: hidden;
    height: 0;
    z-index: 999;
    /*设置元素的堆叠顺序，属性值越大，该元素层离用户越近*/
}

.gather .view .view .content h3 {
    color: #fff;
    border-bottom: 2px solid rgba(76, 179, 77, 0.5);
    padding: 10px 0;
}

.gather .view .content p {
    padding: 10px;
    font-size: 12px;
    text-indent: 2em;
    text-align: justify;
}

.gather .view:hover .content {
    height: 150px;
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
}


/*before   after为选择器，一般给选择器加动画背景，设置动画样式*/

.gather .view:before {
    content: "";
    position: absolute;
    top: -280px;
    right: 0;
    width: 420px;
    height: 420px;
    background: rgba(133, 203, 190, 0.5);
    /*变形：旋转55度，水平（向右）移动60px*/
    transform: rotate(55deg) translateX(60px);
    -webkit-transform: rotate(55deg) translateX(60px);
    /*设置元素变形起始点*/
    transform-origin: 100% 0%;
    -webkit-transform-origin: 100% 0%;
    /*过渡动画：所有属性都改变，时长0.5s,速率逐渐变慢，延迟0.3s*/
    transition: all 0.5s ease 0.3s;
    -webkit-transition: all 0.5s ease 0.3s;
}

.gather .view:nth-of-type(1)::before,
.gather .view:nth-of-type(5)::before {
    top: -999px;
    width: 600px;
    height: 600px;
    -webkit-transform: rotate(55deg) translateX(-37px) translateY(50px);
}


/*写好样式，进行隐藏，用top:-280px;*/

.gather .view:hover:before {
    top: 0;
}

.gather .view:after {
    content: "";
    position: absolute;
    bottom: -240px;
    left: 0;
    width: 420px;
    height: 420px;
    background: rgba(133, 203, 190, 0.5);
    transform: rotate(55deg) translateX(-60px);
    -webkit-transform: rotate(55deg) translateX(-60px);
    transform-origin: 0% 100%;
    -webkit-transform-origin: 0% 100%;
    transition: all 0.5s ease 0.3s;
    -webkit-transition: all 0.5s ease 0.3s;
}

.gather .view:nth-of-type(1)::after,
.gather .view:nth-of-type(5)::after {
    left: 520px;
    width: 600px;
    height: 600px;
    -webkit-transform: rotate(55deg) translateX(-200px) translateY(285px);
}

.gather .view:nth-of-type(1):hover:after,
.gather .view:nth-of-type(5):hover:after {
    left: 390px;
}

.gather .view:hover:after {
    bottom: 0px;
}

.grade {
    overflow: hidden;
    margin-top: 15px;
    margin-bottom: 15px;
}

.grade li {
    float: left;
    width: 290px;
    overflow: hidden;
    margin-right: 10px;
}

.grade li:last-child {
    margin-right: 0;
}

.grade li p {
    margin: 10px 0;
    color: rgb(110, 110, 110);
    font-size: 14px;
}

.grade li h3 {
    font-size: 16px;
}

.grade li h3 span {
    margin-left: 5px;
    font-size: 16px;
    color: #fc8f26;
}


/* 最近作品 */

.show {
    overflow: hidden;
}

.show dl {
    float: left;
    text-align: center;
    width: 285px;
    margin-right: 15px;
    background-color: white;
    border: 1px solid #ccc;
}

.show dl dd {
    line-height: 30px;
}

.show dl dt img {
    width: 100%;
    height: 360px;
}

.show dl dd img {
    height: 30px;
}


/* 豆瓣评分 */

.grade li img {
    float: left;
    width: 40%;
    height: 150px;
    margin-right: 15px;
    border-radius: 5%;
}

.grade li .btn {
    width: 100px;
    height: 30px;
    background-color: #da5454;
    border: #94193f 1px solid;
    color: white;
}

.grade li .btn:hover {
    background-color: #fc8f26;
    color: white;
}